table.IS_VALID Function

Syntax

Result_Flag as L = Is_Valid()

Description

Is the current table valid.

Discussion

The <TBL>.IS_VALID() method returns .T. (TRUE) if the table is valid; otherwise, it returns .F. (FALSE).

Example

dim ptr as P
ptr = table.open("customer")
? ptr.is_valid() ? .T.

See Also